home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / TEST / NASMTEST.ASM < prev    next >
Assembly Source File  |  1997-07-10  |  197b  |  18 lines

  1. ; Nasm v0.94
  2. ; To build:
  3. ;    nasm2exe nametest
  4.  
  5. bits 32
  6.  
  7. segment _text use32 'code'
  8.  
  9. nasm_msg db 'Nasm test!$'
  10. global _main
  11. _main:
  12.   mov ah,9
  13.   mov edx,nasm_msg
  14.   int 21h
  15.  
  16.   ret
  17.  
  18.